home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / bbs / RIPGRAF.lha / RIPgraf.install < prev    next >
Text File  |  1994-08-22  |  2KB  |  101 lines

  1. ;Installer script for RIPgraf version 0.80
  2. ;
  3. ;This script assumes you are installing for the first time!
  4. ;
  5.  
  6. ;Ask where to install the program files.
  7.  
  8. (message
  9.         "Please indicate the directory in which all the RIPgraf files should"
  10.     " be installed. A directory will not be automatically created, therefore"
  11.     " you should create a directory on your own called \"RIPgraf\" or any"
  12.     " name you choose by selecting \"Make New Drawer...\" when asked"
  13.     " which directory to install to."
  14. )
  15.  
  16. (set name
  17.     (askdir
  18.         (prompt "Which directory should RIPgraf be installed in?")
  19.         (help @askdir-help)
  20.         (default "SYS:")
  21.         (disk)
  22.     )
  23. )
  24.  
  25. (set @default-dest name)
  26. (set fontdir (cat name "/RIPFONTS"))
  27. (set icondir (cat name "/RIPICONS"))
  28.  
  29. (makedir fontdir
  30.     (prompt "Creating a directory for storing RIP fonts called\n\n" fontdir)
  31.     (help @makedir-help)
  32.     (infos)
  33.     (confirm)
  34. )
  35. (makedir icondir
  36.     (prompt "Creating a directory for storing RIP icons called\n\n" icondir)
  37.     (help @makedir-help)
  38.     (infos)
  39.     (confirm)
  40. )
  41.  
  42. (copyfiles
  43.     (prompt "Copying RIP fonts...")
  44.     (help @copyfiles-help)
  45.     (source "ripfonts")
  46.     (dest fontdir)
  47.     (all)
  48.         (confirm)
  49. )
  50.  
  51. (copyfiles
  52.     (prompt "Copying ICON files...")
  53.     (help @copyfiles-help)
  54.     (source "ripicons")
  55.     (dest icondir)
  56.     (all)
  57.     (confirm)
  58. )
  59.  
  60. (copyfiles
  61.     (prompt "Copying Amiga fonts...")
  62.     (help @copyfiles-help)
  63.     (source "fonts")
  64.     (dest "FONTS:")
  65.     (all)
  66.         (confirm)
  67. )
  68.  
  69. (copyfiles
  70.     (prompt "Copying RIPgraf, documentation and support files...")
  71.     (help @copyfiles-help)
  72.     (source "")
  73.     (dest name)
  74.     (choices
  75.         "RIPGRAF"
  76.         "RIPGRAF.info"
  77.         "RIPGRAF.guide"
  78.         "RIPGRAF.guide.info"
  79.         "REGISTER.TXT"
  80.         "REGISTER.TXT.info"
  81.         "ripgraf.patterns"
  82.                 "RIPGRAF.prefs"
  83.     )
  84.     (confirm)
  85. )
  86.  
  87. (message
  88.         "The RIPgraf installation is now complete! "
  89.     "When you run RIPgraf for the first time, please take a few "
  90.     "moments and update the file preferences from within the "
  91.     "program.\n"
  92.     "Your default FONT directory should be changed to read; " fontdir
  93.     "\n\nand your default ICON directory to read; " icondir
  94.     "\n\nBe sure to select SAVE to make these defaults permanent"
  95. )
  96. (message
  97.     "\n\nRemember, this a SHAREWARE program... If you find it\n"
  98.     "useful, you are expected to register within 30 days\n\n"
  99.     "PLEASE SUPPORT SHAREWARE!"
  100. )
  101.